home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
090
/
eq_part.arc
/
REMOTE.BAT
< prev
next >
Wrap
DOS Batch File
|
1987-04-03
|
826b
|
37 lines
cls
echo off
rem
rem EQUAL PARTNERS
rem
rem Version 1.11
rem Copyright (c) DOWNLINK SYSTEMS INC. 1986,1987
rem This is an example of installing EQUAL on the "remote"
rem also the .bat checks the error/return code from the
rem application program, and takes action accordingly
rem
rem The %1 symbolic parameter may be COM1 or COM2
rem
EQUAL.COM /%1
if errorlevel 3 goto already
if errorlevel 2 goto missing
if errorlevel 1 goto badcomm
echo Equal successfully installed resident
goto end
:already
echo Equal communications program already installed resident
goto end
:missing
echo Config.sys file missing 50-50.SYS statement
goto end
:badcomm
echo Communications port %1 was not found
goto end
:end
echo ** END OF EQUAL INSTALL **